home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1995
/
MacHack 1995.toast
/
Presentations
/
Presentations ’91
/
MPW Stand-Alone Libraries
/
UMakeSAGlobals.p
< prev
next >
Wrap
Text File
|
1991-02-10
|
459b
|
26 lines
UNIT UMakeSAGlobals;
INTERFACE
USES
{ • Implementation use }
PasLibIntf, ErrMgr, OSUtils, Memory, ToolUtils, Errors;
CONST
{ • Global Constants • }
kDfltFileType = 'rsrc';
kDfltFileCreator = 'RSED';
kDfltMainSeg = 'DUDE';
kDfltOtherSeg = 'DUDE';
kDfltRsrcID = 128;
kSASuffix = '.dude';
TYPE
FileSpec = RECORD
fileName: StringHandle; { filename to be processed }
vRefNum: Integer; { vRefnum of the file being processed }
END;
END.